home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
applications
/
patch
/
pgs30a.lha
/
3.0aUpdate
/
Macros.LHA
/
SendtoPageLiner.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-09-20
|
711b
|
20 lines
/* $VER: SendtoPageLiner.rexx 1.0 (02.9.94)
Copyright 1994 Soft-Logik Publishing Corporation
May not be distributed without Soft-Logik Publishing Corporation's express written permission */
OPTIONS RESULTS
ADDRESS 'PAGESTREAM'
/* Allocate requester */
allocarexxrequester '"Work in Progress"' 444 63
reqhandle=result
/* Add gadgets */
addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
addhandle=result
addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
doarexxrequester reqhandle
freearexxrequester reqhandle
EXIT